Sequelize 的坑
一、默认会添加id 和 createdAt 、updatedAt 字段
自定义主键名称不为id 的修改方法
class Collection extends Model {}
Collection.init({
uid: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true // Automatically gets converted to SERIAL for postgres
}
}, { sequelize });
不要createdAt 、updatedAt 字段的修改方法
timestamps=false
[options.timestamps=true] | Boolean | 为模型添加 createdAt 和 updatedAt 两个时间戳字段 |